From: William Manley Date: Wed, 31 Aug 2016 17:14:19 +0000 (+0100) Subject: switchroot: Fix test-switchroot now autotools can build static X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~47^2~11 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=598e3240ff523ca827d225271b6e68da90a5e572;p=ostree.git switchroot: Fix test-switchroot now autotools can build static This test previously depended on manually building ostree-prepare-root. Since 42dab85 we've been able to build static binaries with the usual autotools build-system. This change reflects the fact that `ostree-prepare-root` is built into $srcdir rather than `src/switchroot` where I was building manually. This test now passes with `./configure --with-static-compiler=gcc` (glibc) but still fails with `./configure --with-static-compiler=musl-gcc` (musl). Closes: #485 Approved by: cgwalters --- diff --git a/tests/test-switchroot.sh b/tests/test-switchroot.sh index 17085140..96c849e5 100755 --- a/tests/test-switchroot.sh +++ b/tests/test-switchroot.sh @@ -6,7 +6,7 @@ setup_bootfs() { mkdir -p "$1/proc" "$1/bin" echo "quiet ostree=/ostree/boot.0 ro" >"$1/proc/cmdline" touch "$1/this_is_bootfs" - cp "$(dirname "$this_script")/../src/switchroot/ostree-prepare-root" "$1/bin" + cp "$(dirname "$this_script")/../ostree-prepare-root" "$1/bin" } setup_rootfs() {